home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 April
/
EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso
/
Recent1
/
Filer4_01.lha
/
Filer
/
Rexx
/
MPEGPlayAGA.filer
< prev
next >
Wrap
Text File
|
1995-04-02
|
743b
|
46 lines
/*
$VER: MPEGPlayAGA.filer 1.1 (2.4.95)
Author:
Matthias Scheler (tron@lyssa.pb.owl.de)
Function:
Plays MPEG files with Michael van Elst's mp V1.03.
It pops up a requester asking to use HAM8 instead of the GRAY8.
History:
1.1 removed unnecessary ADDRESS 'FilerRexx'
Requires:
mp V1.03 or newer
AGA
Call:
MPEGPlayAGA FILENAME
Example for "Filer.RC":
REXXCLASS "#?.mpg","","MPEGPlay %s"
*/
PARSE ARG FileName
OPTIONS RESULTS
'STATUS Playing MPEG Animation' FileName
PANEL OFF
/*
For AGA machines
*/
QUESTBOX 'Play animation in HAM8 ?'
IF RESULT THEN EXEC 'mp -dither ham8' FileName
ELSE EXEC 'mp -dither gray8' FileName
PANEL ON
'HISTORY Played MPEG Animation' FileName